home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mint110s / cookie.h < prev    next >
C/C++ Source or Header  |  1993-08-16  |  297b  |  21 lines

  1. /* header file for dealing with the cookie jar */
  2.  
  3. #ifndef _COOKIE_H
  4. #define _COOKIE_H
  5.  
  6. union clong {
  7.     char    aschar[4];
  8.     long    aslong;
  9. };
  10.  
  11. struct cookie {
  12.     union clong tag;
  13.     long value;
  14. };
  15.  
  16. typedef struct cookie COOKIE;
  17.  
  18. #define CJAR    ((COOKIE **) 0x5a0L)
  19.  
  20. #endif /* _COOKIE_H */
  21.